I request access to the files so I can contribute to the project!#181
Closed
ghost wants to merge 338 commits into
Closed
I request access to the files so I can contribute to the project!#181ghost wants to merge 338 commits into
ghost wants to merge 338 commits into
Conversation
Perceptron - one neuron
Front variable is added so that dequeue can be done any number of times.Without front,it displays only self.entries[0] as dequeued.
Neural Network - Perceptron
Added front to indicate the starting of the Queue
* Create singly_LinkedList.py * Update singly_LinkedList.py * Update singly_LinkedList.py * Update singly_LinkedList.py * Update singly_LinkedList.py * Update singly_LinkedList.py
Maximum_subaray_problem
* Started Trie implementation. * Basic definition of Trie in comments at the top of the file * Defined Trie class and method signatures. * * Renamed method signatures to match formal definitions * Finished Simple Trie implementation and added test functions * Finished function to insert a word into Trie * Finished function to find a word in the Trie * Added Test functions with Assertions * Updated test function to read from the Dictionary.txt file in repository * * No longer using $ to mark end of word * No longer reading from file but instead provided simple sample input for easier testing * Deleting empty __init__.py file
add neuralnetwork_bp3.py
stephen_branch
Merged Graphs into data_structure/graph
increased user interactivity and more powerful usage of modules.
There are three methods that find approximately the roots of a non-linear function
Bisection,Newton,Intersection
Three methods to find the roots of non-linear functions
a class with simple cipher algorithm that uses bitwise XOR
XOR cipher algorithm
cclauss
requested changes
Dec 22, 2017
| if (self.__key == 0): | ||
| key = 1 | ||
| else: | ||
| key = self.__key |
|
|
||
| # This will be returned | ||
| ans = [] | ||
| resultNumber = 0 |
Member
There was a problem hiding this comment.
resultNumber is assigned to but not used.
| return ans | ||
|
|
||
|
|
||
| def encrypt_string(self,content, key = 0): |
Member
There was a problem hiding this comment.
return ''.join(self.encrypt(content, key))
| assert (isinstance(file,str) and isinstance(key,int)) | ||
|
|
||
| try: | ||
| fin = open(file,"r") |
Member
There was a problem hiding this comment.
use with open() to avoid the need to close() manually and also to close() even if an exception is thrown.
| fin.close() | ||
| fout.close() | ||
|
|
||
| except: |
Member
There was a problem hiding this comment.
See PEP8 for reasons to avoid bare exceptions.
There was a problem hiding this comment.
Thanks for your proposals.I'm glad If I get some feedback.
greetings from Saarland
Christian
I improve my code
I comment out some code lines in the test-section
improvement XOR_cipher.py
path-1 forwarding ports with meterpreter API using namespaces with gui supported C# program. look at open ai.lnk file to see more.
Modernize Python 2 code to get ready for Python 3
Add automated flake8 testing of pull requests
typo fix
2. Corrected Logic {AVL.py, 104-107}
3. Removed unnecessary semicolons {BellmanFord.py, Dijkstra.py}
cclauss
approved these changes
Jan 1, 2018
Without these changes, Python syntax errors are raised. flake8 should be run by this repo's .travis.yml file but it is currently turned off.
Pass flake8 tests
Changing for Python 3 using exception handling for robust code
Update cyclesort.py
Removing requirement of math library to make code faster
fixed failure function and cleaned up code in kmp + added rabin-karp
Update NeutonMethod.py
Added Tarjan's algorithm for finding strongly connected components
This pull request was closed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.